==
大家安安,再介紹了自定義View之後,我想來實作一個小畫家APP
目前預計功能有
Android:小畫家 畫圖 ,儲存圖
Spring Boot:上傳圖片API,下載圖片API,顯示圖片API
然後用的資料庫是MySQL,之後會架到AWS上
鐵人賽
好,總之就是Spring Boot 的第一天,開始!!
編譯器我用的是 IntelliJ 然後裝的是專業版
主要是學生的話是免費的,所以註冊用edu.tw的信箱
https://www.jetbrains.com/idea/download/#section=windows
就按安裝,然後一直下一步就好了
https://www.jetbrains.com/shop/eform/students
這個網址點進去然後註冊,到你有edu的信箱收信即可
PS:我們學校信箱不知為何檔註冊信==,如果你學校信箱也檔信就改註冊google gms的就好
開的時候他會要你登入,這時候選JetBrains Account Accout password填入你JetBrain帳密即可。
File -> New -> Project 選Spring Intializer
選Project Sdk,我習慣用1.8
如果你沒有JDK可以到下面網址下載
https://www.oracle.com/java/technologies/javase-downloads.html
接下來選你的depencies,就先選 Web 就好
接著打開他
創一個Class取名叫 HelloWorldContoller
@RestController
public class HelloWorld {
@GetMapping("/hello")
public String hello(){
return "hello";
}
}
右上角有個綠色箭頭,按下去 然後 網址輸入 http://localhost:8080/hello
就可以顯示Hello了!!
如果環境有問題可以參考我的Pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
這個的github
https://github.com/uuko/hello